.page-amenities-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.page-amenities-container {
  max-width: 100%;
  margin: 0 auto;
}

.page-amenities-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.page-amenities-title {
  font-size: 36px;
  font-weight: 700;
  color: #2e2e2e;
  line-height: 1.3;
  margin-bottom: 20px;
}

.page-amenities-description {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
}

.features-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 40px auto;
}

.page-amenities-section .feature-card {
  display: flex;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 5px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.page-amenities-section .feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    line-height: normal;
}

.feature-image {
    width: 100%;
	max-height: 350px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  padding: 20px;
  flex: 1;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p.feature-text {
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-link {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: #b30000;
    padding: 10px 12px;
    margin-top: 7px;
    display: inline-block;
    border-radius: 5px;
}

.feature-link:hover {
  text-decoration: underline;
}

.page-amenities-section .feature-content {
    position: absolute;
    text-align: left;
    width: 65%;
    right: 0;
    height: 100%;
    padding-top: 6%;
    background: rgba(0, 0, 0, 0.5);
}

.schedule-visit-section.amenities-schedule-visit {
    padding: 65px 20px;
}

@media screen and (min-width: 1750px) {
    
    .page-amenities-section .feature-content {
        padding-top: 12%;
    }
    
}

@media screen and (min-width: 1850px) {
    
    .page-amenities-section .feature-content {
        padding-top: 12%;
    }
    
}

@media screen and (max-width: 1235px) {
    .page-amenities-section .feature-content {
        padding: 12px;
        padding-top: 3%;
    }

    .page-amenities-title {
        font-size: 24px;
    }

    .features-section {
        grid-template-columns: 1fr;
        margin: 40px auto 0px auto;
    }
    
    .page-amenities-section .feature-card h3 {
        font-size: 14px;
    }
    .feature-content p.feature-text {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .feature-link {
        font-size: 8px;
        padding: 8px 12px;
    }
}

@media screen and (max-width: 768px) {
	.feature-image {
		max-height: 200px;
	}
}